Conversation
cheyang
reviewed
Jan 14, 2026
|
|
||
| 在引入工作负载策略层之前,OME的工作负载部署逻辑紧耦合在各个角色的Reconciler中,每个组件独立创建Deployment、Service、Knative Service等资源。这种架构存在以下问题: | ||
|
|
||
| 1. **扩展性受限**:只支持每个角色有自己独立的资源,无法支持多个角色共用一个工作负载,难以支持All-in-One工作负载类型如RBG、Grove等 |
There was a problem hiding this comment.
- 可运维性不足:
- 不支持镜像原地升级:现有工作负载在镜像更新时必须重建 Pod,导致服务中断或延迟,拖慢整体发布效率。
- 缺少指定预热控制能力。
2. 多角色协同能力弱 - 缺乏跨角色统一编排:各角色独立调谐,无法感知彼此的版本、状态或依赖关系。在扩容或升级时,不能保证角色间的版本一致性或比例协调(比如“先升 A 再升 B”、“A:B = 2:1”等策略),容易引发兼容性问题或服务异常。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this PR does
Why we need it
Fixes #
How to test
Checklist
make testpasses locally